home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / seyon / seyon.h < prev    next >
C/C++ Source or Header  |  1995-05-03  |  686b  |  36 lines

  1.  
  2. /*
  3.  * This file is part of the Seyon, Copyright (c) 1992-1993 by Muhammad M.
  4.  * Saggaf. All rights reserved.
  5.  *
  6.  * See the file COPYING (1-COPYING) or the manual page seyon(1) for a full
  7.  * statement of rights and permissions for this program.
  8. */
  9.  
  10. #include "config.h"
  11.  
  12. /* globals */
  13.  
  14. #include <ctype.h>
  15. #include <string.h>
  16. #include <stdio.h>
  17. #ifndef NOSTDHDRS
  18. #include <stdlib.h>
  19. #endif
  20. #ifndef SUNOS_3
  21. #include <setjmp.h>
  22. #endif
  23. #include <errno.h>
  24. #include <unistd.h>
  25. #include <sys/types.h>
  26.  
  27. struct kw {            /* Used by command parsing routines */
  28.   char           *keyword;
  29.   void            (*rtn) ();
  30. };
  31.  
  32. struct command {
  33.   char           *name;
  34.   void            (*call_back) ();
  35. };
  36.